home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop from Home / Iceland.iso / pc / noqtinternetaccess.dir / 00368_Script_Go to URL < prev    next >
Text File  |  2003-03-05  |  2KB  |  66 lines

  1. -- DESCRIPTION --
  2.  
  3. on getBehaviorDescription me
  4.   return \
  5.     "GO TO URL" & RETURN & RETURN & \
  6.     "Drop this behavior onto a Sprite, the Stage or into the Script Channel of the Score to load the designated HTML Page." & RETURN & RETURN & \
  7.     "If you drop it onto a graphic member, the 'gotoNetPage' command is sent when the user clicks on the sprite (on mouseUp)." & RETURN & RETURN & \
  8.     "If you drop it onto the Stage or the Script Channel of the Score, it will be sent when the playback head leaves the frame (on exitFrame)." & RETURN & RETURN & \
  9.     "When called from a Shockwave movie, this behavior replaces the current page displayed in the web browser. " & \
  10.     "When called from a projector or in authoring mode, it opens a browser to display the requested page." & RETURN & RETURN & \
  11.     "PARAMETERS:" & RETURN & \
  12.     "* Destination URL - Enter the complete URL of the destination page. " & \
  13.     "Include http://"
  14. end getBehaviorDescription
  15.  
  16.  
  17. on getBehaviorTooltip me
  18.   return \
  19.     "Use with graphic members or as a frame behavior. " & \
  20.     "When called from a Shockwave movie, this behavior replaces the current page displayed in the web browser. " & \
  21.     "When called from a projector or in authoring mode, it opens a browser to display the requested page. " & \
  22.     "Acts on mouseUp or on exitFrame, depending on whether you drag it to a sprite or to the Stage."
  23. end getBehaviorTooltip
  24.  
  25.  
  26.  
  27. -- HISTORY --
  28.  
  29. -- 12 November 1998, written for the D7 Behaviors Palette by James Newton
  30. --  5 January   2000: updated to D8 <km>
  31.  
  32.  
  33.  
  34. property myURL
  35.  
  36. on mouseUp me
  37.   -- The user clicked on a sprite
  38.   gotoNetPage myURL
  39. end mouseUp
  40.  
  41. on exitFrame me
  42.   if the currentspriteNum = 0 then
  43.     -- The behavior is attached to a frame
  44.     gotoNetPage myURL
  45.   end if
  46. end exitFrame
  47.  
  48.  
  49. on isOKToAttach (me, aSpriteType, aSpriteNum)
  50.   return(1)  
  51. end on
  52.  
  53.  
  54.  
  55. on getPropertyDescriptionList  
  56.   return \
  57. [ \
  58.  #myURL: \
  59.  [ \
  60.   #comment: "Destination URL", \
  61.   #format:  #string, \
  62.   #default: "http://www.macromedia.com " \
  63.  ] \
  64. ]
  65. end getPropertyDescriptionList
  66.